type net/http.timeoutError

8 uses

	net/http (current package)
		client.go#L732: 				err = &timeoutError{err.Error() + " (Client.Timeout exceeded while awaiting headers)"}
		client.go#L980: 		err = &timeoutError{err.Error() + " (Client.Timeout or context cancellation while reading body)"}
		transport.go#L2706: type timeoutError struct {
		transport.go#L2710: func (e *timeoutError) Error() string     { return e.err }
		transport.go#L2711: func (e *timeoutError) Timeout() bool     { return true }
		transport.go#L2712: func (e *timeoutError) Temporary() bool   { return true }
		transport.go#L2713: func (e *timeoutError) Is(err error) bool { return err == context.DeadlineExceeded }
		transport.go#L2715: var errTimeout error = &timeoutError{"net/http: timeout awaiting response headers"}